home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_400 / 410_01 / wlist / readme.now < prev    next >
Encoding:
Internet Message Format  |  1995-12-30  |  1.8 KB

  1. From nigel.msen.com!sdd.hp.com!hplabs!unix.sri.com!headwall.Stanford.EDU!agate!howland.reston.ans.net!cs.utexas.edu!uunet!bts!bill Thu Feb 17 09:29:21 1994
  2. Path: nigel.msen.com!sdd.hp.com!hplabs!unix.sri.com!headwall.Stanford.EDU!agate!howland.reston.ans.net!cs.utexas.edu!uunet!bts!bill
  3. From: bill@bts.UUCP (bill hatch)
  4. Newsgroups: alt.sources
  5. Subject: wlist - the README file
  6. Message-ID: <1994Feb17.004607@bts.UUCP>
  7. Date: 17 Feb 94 00:46:07 GMT
  8. Lines: 38
  9.  
  10. I forgot to include a README file in my recent wlist - c++ linked list 
  11. posting.
  12.  
  13. -------------  README -------------------------
  14.     wlist Wed Feb 16 19:47:39 EST 1994
  15.  
  16. Wlist is a C++ list package that i wrote to satisfy some immediate
  17. requirements on one of our projects.  The wlist release includes the
  18. following files
  19.     Makefile    - typical unix makefile
  20.     maintest.cc    - test program that hopefully exercises all wlist
  21.     makeit        - script containing all system dependent make stuff
  22.               "makeit testwl"  will make the test program.
  23.               edit this file to fit your system
  24.     node.cc        - list node functions
  25.     testtmpl.cc    - c++ template for additions to maintect.cc to
  26.               test new wlist functions
  27.     tstring.cc    - a simple string class used for testing wlist
  28.     tstring.h
  29.     wlist.cc    - wlist class functions
  30.     wlist.h        - wlist class definition
  31.  
  32. Wlist.h documents the class interface.  See maintest.cc for typical
  33. usage.  The wlist class is a doubly linked list that stores a generic
  34. pointer, void *, at each node.  Pointers to functions which print and
  35. compare the objects pointed to at a node may be set within a wlist
  36. class instance.  Subsequent use of the print or compare functions 
  37. assumes that all of the nodes, within a wlist instance, point to the
  38. same type of object. 
  39.  
  40.  
  41. Bill Hatch
  42. Coleman Research Corporation
  43. 9891 Broken Land Parkway
  44. Suite 200
  45. Columbia, Maryland 21045
  46. Phone (301)621-8600
  47. FAX (410)7210
  48.  
  49.